body {
    font-family: 'Comic Sans MS', cursive, sans-serif; /* Because why not? It's a joke! */
    background-color: #f0f8ff; /* AliceBlue */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    border: 5px solid #ff69b4; /* Hot Pink */
    box-sizing: border-box;
}

h1 {
    color: #8a2be2; /* BlueViolet */
    margin-bottom: 25px;
    font-size: 2.2em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.warning {
    background-color: #fffacd; /* LemonChiffon */
    border: 1px dashed #ffa500; /* Orange */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.9em;
    color: #a0522d; /* Sienna */
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
select {
    width: calc(100% - 20px);
    padding: 12px 10px;
    margin-bottom: 10px;
    border: 2px solid #add8e6; /* LightBlue */
    border-radius: 8px;
    font-size: 1.1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
select:focus {
    border-color: #4682b4; /* SteelBlue */
    outline: none;
}

button {
    background-color: #32cd32; /* LimeGreen */
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    width: 100%;
    box-shadow: 0 4px #228b22; /* ForestGreen */
}

button:hover {
    background-color: #228b22; /* ForestGreen */
    transform: translateY(-2px);
    box-shadow: 0 6px #1a6b1a;
}

button:active {
    background-color: #1a6b1a; /* Darker ForestGreen */
    transform: translateY(2px);
    box-shadow: 0 2px #124d12;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    box-shadow: 0 4px #aaaaaa;
    transform: none;
}

.status-box {
    background-color: #e6e6fa; /* Lavender */
    border: 2px solid #9370db; /* MediumPurple */
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    color: #4b0082; /* Indigo */
    font-weight: bold;
}

...existing code...

.status-box p .spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(147, 112, 219, 0.3); /* MediumPurple transparent */
    border-radius: 50%;
    border-top-color: #9370db; /* MediumPurple */
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


